home *** CD-ROM | disk | FTP | other *** search
/ Canon Creative 3 / Canon Creative 3.iso / webrec / WEBRECD1.DIR / 00367.ls < prev    next >
Encoding:
Text File  |  1996-12-10  |  17.1 KB  |  627 lines

  1. on clickButton
  2.   set sp to the clickOn
  3.   set cc to the castNum of sprite the clickOn
  4.   puppetSprite(sp, 1)
  5.   set the castNum of sprite sp to cc + 1
  6.   puppetSound("ScreenButtonclick")
  7.   updateStage()
  8.   set hilited to 1
  9.   repeat while the mouseDown
  10.     if hilited then
  11.       if the mouseCast <> (cc + 1) then
  12.         set the castNum of sprite sp to cc
  13.         set hilited to 0
  14.         updateStage()
  15.       end if
  16.       next repeat
  17.     end if
  18.     if the mouseCast = cc then
  19.       set the castNum of sprite sp to cc + 1
  20.       set hilited to 1
  21.       updateStage()
  22.     end if
  23.   end repeat
  24.   set the castNum of sprite sp to cc
  25.   updateStage()
  26.   return hilited
  27. end
  28.  
  29. on tabButton
  30.   set sp to the clickOn
  31.   set cc to the castNum of sprite the clickOn
  32.   puppetSprite(sp, 1)
  33.   set the castNum of sprite sp to cc + 1
  34.   puppetSound("tabDown")
  35.   updateStage()
  36.   set hilited to 1
  37.   repeat while the mouseDown
  38.     if hilited then
  39.       if the mouseCast <> (cc + 1) then
  40.         set the castNum of sprite sp to cc
  41.         set hilited to 0
  42.         updateStage()
  43.       end if
  44.       next repeat
  45.     end if
  46.     if the mouseCast = cc then
  47.       set the castNum of sprite sp to cc + 1
  48.       set hilited to 1
  49.       updateStage()
  50.     end if
  51.   end repeat
  52.   set the castNum of sprite sp to cc
  53.   updateStage()
  54.   puppetSprite(sp, 0)
  55.   return hilited
  56. end
  57.  
  58. on screenAreaButton
  59.   set sp to the clickOn
  60.   set cc to the castNum of sprite the clickOn
  61.   set hilited to 1
  62.   repeat while the mouseDown
  63.     if hilited then
  64.       if the mouseCast <> cc then
  65.         set hilited to 0
  66.         updateStage()
  67.       end if
  68.       next repeat
  69.     end if
  70.     if the mouseCast = cc then
  71.       set hilited to 1
  72.       updateStage()
  73.     end if
  74.   end repeat
  75.   if hilited then
  76.     puppetSound("screenButtonClick")
  77.     updateStage()
  78.   end if
  79.   return hilited
  80. end
  81.  
  82. on pushButton
  83.   set sp to the clickOn
  84.   set cc to the castNum of sprite the clickOn
  85.   puppetSprite(sp, 1)
  86.   set the castNum of sprite sp to cc + 1
  87.   puppetSound("pushButtonSound")
  88.   updateStage()
  89.   set hilited to 1
  90.   repeat while the mouseDown
  91.     if hilited then
  92.       if the mouseCast <> (cc + 1) then
  93.         set the castNum of sprite sp to cc
  94.         set hilited to 0
  95.         updateStage()
  96.       end if
  97.       next repeat
  98.     end if
  99.     if the mouseCast = cc then
  100.       set the castNum of sprite sp to cc + 1
  101.       set hilited to 1
  102.       updateStage()
  103.     end if
  104.   end repeat
  105.   updateStage()
  106.   puppetSprite(sp, 0)
  107.   return hilited
  108. end
  109.  
  110. on screenButton
  111.   set sp to the clickOn
  112.   set cc to the castNum of sprite the clickOn
  113.   puppetSprite(sp, 1)
  114.   set the castNum of sprite sp to cc + 1
  115.   puppetSound("screenButtonClick")
  116.   updateStage()
  117.   set hilited to 1
  118.   repeat while the mouseDown
  119.     if hilited then
  120.       if the mouseCast <> (cc + 1) then
  121.         set the castNum of sprite sp to cc
  122.         set hilited to 0
  123.         updateStage()
  124.       end if
  125.       next repeat
  126.     end if
  127.     if the mouseCast = cc then
  128.       set the castNum of sprite sp to cc + 1
  129.       set hilited to 1
  130.       updateStage()
  131.     end if
  132.   end repeat
  133.   set the castNum of sprite sp to cc
  134.   updateStage()
  135.   puppetSprite(sp, 0)
  136.   return hilited
  137. end
  138.  
  139. on checkRoll rolloverSpriteList
  140.   set nn to count(rolloverSpriteList)
  141.   repeat with i = 1 to nn
  142.     set sp to getAt(rolloverSpriteList, i)
  143.     set cc to the castNum of sprite sp
  144.     set cName to the name of cast cc
  145.     if rollOver(sp) then
  146.       if cName = "unRolled" then
  147.         puppetSprite(sp, 1)
  148.         if (sp >= 14) and (sp <= 21) then
  149.           puppetSound("tabRoll")
  150.         else
  151.           if (sp >= 7) and (sp <= 9) then
  152.             puppetSound("tabRoll")
  153.           else
  154.             puppetSound("note" & random(10))
  155.           end if
  156.         end if
  157.         set the castNum of sprite sp to the castNum of sprite sp + 1
  158.       end if
  159.       next repeat
  160.     end if
  161.     puppetSprite(sp, 0)
  162.   end repeat
  163.   updateStage()
  164. end
  165.  
  166. on checkQuitRoll rolloverSpriteList
  167.   set nn to count(rolloverSpriteList)
  168.   repeat with i = 1 to nn
  169.     set sp to getAt(rolloverSpriteList, i)
  170.     set cc to the castNum of sprite sp
  171.     set cName to the name of cast cc
  172.     if rollOver(sp) then
  173.       if cName = "unRolled" then
  174.         puppetSprite(sp, 1)
  175.         if (sp >= 14) and (sp <= 21) then
  176.           puppetSound("tabRoll")
  177.         else
  178.           if (sp >= 6) and (sp <= 9) then
  179.             puppetSound("tabRoll")
  180.           else
  181.             puppetSound("note" & random(10))
  182.           end if
  183.         end if
  184.         set the castNum of sprite sp to the castNum of sprite sp + 1
  185.       end if
  186.       next repeat
  187.     end if
  188.     puppetSprite(sp, 0)
  189.   end repeat
  190.   updateStage()
  191. end
  192.  
  193. on checkAddonSectionRoll rolloverSpriteList
  194.   set nn to count(rolloverSpriteList)
  195.   repeat with i = 1 to nn
  196.     set sp to getAt(rolloverSpriteList, i)
  197.     set cc to the castNum of sprite sp
  198.     set cName to the name of cast cc
  199.     if rollOver(sp) then
  200.       if cName = "unRolled" then
  201.         puppetSprite(sp, 1)
  202.         if ((sp >= 14) and (sp <= 21)) or ((sp >= 7) and (sp <= 9)) then
  203.           puppetSound("tabRoll")
  204.         else
  205.           if (sp >= 7) and (sp <= 9) then
  206.             puppetSound("tabRoll")
  207.           else
  208.             puppetSound("newNote" & random(9))
  209.           end if
  210.         end if
  211.         set the castNum of sprite sp to the castNum of sprite sp + 1
  212.       end if
  213.       next repeat
  214.     end if
  215.     puppetSprite(sp, 0)
  216.   end repeat
  217.   updateStage()
  218. end
  219.  
  220. on checkIntroRoll rolloverSpriteList
  221.   set nn to count(rolloverSpriteList)
  222.   repeat with i = 1 to nn
  223.     set sp to getAt(rolloverSpriteList, i)
  224.     set cc to the castNum of sprite sp
  225.     set cName to the name of cast cc
  226.     if rollOver(sp) then
  227.       if cName = "unRolled" then
  228.         puppetSprite(sp, 1)
  229.         if sp = 11 then
  230.           puppetSound("keyJangle")
  231.         else
  232.           if (sp >= 14) and (sp <= 21) then
  233.             puppetSound("tabRoll")
  234.           else
  235.             if (sp >= 7) and (sp <= 9) then
  236.               puppetSound("tabRoll")
  237.             else
  238.               puppetSound("note" & random(10))
  239.             end if
  240.           end if
  241.         end if
  242.         set the castNum of sprite sp to the castNum of sprite sp + 1
  243.       end if
  244.       next repeat
  245.     end if
  246.     puppetSprite(sp, 0)
  247.   end repeat
  248.   updateStage()
  249. end
  250.  
  251. on checkTourRoll rolloverSpriteList
  252.   set nn to count(rolloverSpriteList)
  253.   repeat with i = 1 to nn
  254.     set sp to getAt(rolloverSpriteList, i)
  255.     set cc to the castNum of sprite sp
  256.     set cName to the name of cast cc
  257.     if rollOver(sp) then
  258.       if cName = "unRolled" then
  259.         puppetSprite(sp, 1)
  260.         if sp = 11 then
  261.           puppetSound("unlockDoor")
  262.         else
  263.           if (sp >= 14) and (sp <= 21) then
  264.             puppetSound("tabRoll")
  265.           else
  266.             if (sp >= 7) and (sp <= 9) then
  267.               puppetSound("tabRoll")
  268.             else
  269.               puppetSound("tabRoll")
  270.             end if
  271.           end if
  272.         end if
  273.         set the castNum of sprite sp to the castNum of sprite sp + 1
  274.       end if
  275.       next repeat
  276.     end if
  277.     puppetSprite(sp, 0)
  278.   end repeat
  279.   updateStage()
  280. end
  281.  
  282. on checkSamplesRoll rolloverSpriteList
  283.   set nn to count(rolloverSpriteList)
  284.   repeat with i = 1 to nn
  285.     set sp to getAt(rolloverSpriteList, i)
  286.     set cc to the castNum of sprite sp
  287.     set cName to the name of cast cc
  288.     if rollOver(sp) then
  289.       if cName = "unRolled" then
  290.         puppetSprite(sp, 1)
  291.         if sp = 11 then
  292.           puppetSound("doorSound")
  293.         else
  294.           if (sp >= 14) and (sp <= 21) then
  295.             puppetSound("tabRoll")
  296.           else
  297.             if sp = 23 then
  298.               puppetSound("note1")
  299.             else
  300.               if sp = 24 then
  301.                 puppetSound("note2")
  302.               else
  303.                 if sp = 25 then
  304.                   puppetSound("note3")
  305.                 else
  306.                   if sp = 26 then
  307.                     puppetSound("note4")
  308.                   else
  309.                     if sp = 27 then
  310.                       puppetSound("note5")
  311.                     else
  312.                       if sp = 28 then
  313.                         puppetSound("note6")
  314.                       else
  315.                         if sp = 29 then
  316.                           puppetSound("note7")
  317.                         else
  318.                           if sp = 30 then
  319.                             puppetSound("note8")
  320.                           else
  321.                             if sp = 31 then
  322.                               puppetSound("note9")
  323.                             else
  324.                               if sp = 32 then
  325.                                 puppetSound("note10")
  326.                               else
  327.                                 if (sp >= 7) and (sp <= 9) then
  328.                                   puppetSound("tabRoll")
  329.                                 else
  330.                                   puppetSound("note" & random(10))
  331.                                 end if
  332.                               end if
  333.                             end if
  334.                           end if
  335.                         end if
  336.                       end if
  337.                     end if
  338.                   end if
  339.                 end if
  340.               end if
  341.             end if
  342.           end if
  343.         end if
  344.         set the castNum of sprite sp to the castNum of sprite sp + 1
  345.       end if
  346.       next repeat
  347.     end if
  348.     puppetSprite(sp, 0)
  349.   end repeat
  350.   updateStage()
  351. end
  352.  
  353. on checkSamplesMenuRoll rolloverSpriteList
  354.   set nn to count(rolloverSpriteList)
  355.   repeat with i = 1 to nn
  356.     set sp to getAt(rolloverSpriteList, i)
  357.     set cc to the castNum of sprite sp
  358.     set cName to the name of cast cc
  359.     if rollOver(sp) then
  360.       if cName = "unRolled" then
  361.         puppetSprite(sp, 1)
  362.         if sp = 11 then
  363.           puppetSound("doorSound")
  364.         else
  365.           if (sp >= 14) and (sp <= 21) then
  366.             puppetSound("tabRoll")
  367.           else
  368.             if sp = 23 then
  369.               puppetSound("note1")
  370.             else
  371.               if sp = 24 then
  372.                 puppetSound("note2")
  373.               else
  374.                 if sp = 25 then
  375.                   puppetSound("note3")
  376.                 else
  377.                   if sp = 26 then
  378.                     puppetSound("note4")
  379.                   else
  380.                     if sp = 27 then
  381.                       puppetSound("note5")
  382.                     else
  383.                       if sp = 28 then
  384.                         puppetSound("note6")
  385.                       else
  386.                         if sp = 29 then
  387.                           puppetSound("note7")
  388.                         else
  389.                           if sp = 30 then
  390.                             puppetSound("note8")
  391.                           else
  392.                             if sp = 31 then
  393.                               puppetSound("note9")
  394.                             else
  395.                               if sp = 32 then
  396.                                 puppetSound("note10")
  397.                               else
  398.                                 if (sp >= 7) and (sp <= 9) then
  399.                                   puppetSound("tabRoll")
  400.                                 else
  401.                                   puppetSound("note" & random(10))
  402.                                 end if
  403.                               end if
  404.                             end if
  405.                           end if
  406.                         end if
  407.                       end if
  408.                     end if
  409.                   end if
  410.                 end if
  411.               end if
  412.             end if
  413.           end if
  414.         end if
  415.         set the castNum of sprite sp to the castNum of sprite sp + 1
  416.       end if
  417.       next repeat
  418.     end if
  419.     puppetSprite(sp, 0)
  420.   end repeat
  421.   updateStage()
  422. end
  423.  
  424. on checkAddonsRoll rolloverSpriteList
  425.   set nn to count(rolloverSpriteList)
  426.   repeat with i = 1 to nn
  427.     set sp to getAt(rolloverSpriteList, i)
  428.     set cc to the castNum of sprite sp
  429.     set cName to the name of cast cc
  430.     if rollOver(sp) then
  431.       if cName = "unRolled" then
  432.         puppetSprite(sp, 1)
  433.         if sp = 11 then
  434.           puppetSound("cameraClick")
  435.         else
  436.           if (sp >= 7) and (sp <= 9) then
  437.             puppetSound("tabRoll")
  438.           else
  439.             if (sp >= 14) and (sp <= 21) then
  440.               puppetSound("tabRoll")
  441.             else
  442.               puppetSound("note" & random(10))
  443.             end if
  444.           end if
  445.         end if
  446.         set the castNum of sprite sp to the castNum of sprite sp + 1
  447.       end if
  448.       next repeat
  449.     end if
  450.     puppetSprite(sp, 0)
  451.   end repeat
  452.   updateStage()
  453. end
  454.  
  455. on checkPopupRoll rolloverSprite, hiliteRectList, hiliteCastList
  456.   set sp to rolloverSprite
  457.   set hiliteSprite to rolloverSprite + 1
  458.   set cc to the castNum of sprite sp
  459.   set cName to the name of cast cc
  460.   if rollOver(sp) or rollOver(hiliteSprite) then
  461.     if cName = "unrolled" then
  462.       puppetSprite(sp, 1)
  463.       puppetSprite(hiliteSprite, 1)
  464.       puppetSound("popupRollover")
  465.       set the castNum of sprite sp to the castNum of sprite sp + 1
  466.     else
  467.       if checkRollPopupHilites(hiliteSprite, hiliteRectList, hiliteCastList) then
  468.         updateStage()
  469.       else
  470.       end if
  471.     end if
  472.   else
  473.     puppetSprite(sp, 0)
  474.     puppetSprite(hiliteSprite, 0)
  475.   end if
  476.   updateStage()
  477. end
  478.  
  479. on checkRollPopupHilites hiliteSprite, hiliteRectList, hiliteCastList
  480.   set cc to count(hiliteRectList)
  481.   set rollSprite to hiliteSprite - 1
  482.   repeat with i = 1 to cc
  483.     if mouseInRect(getAt(hiliteRectList, i)) then
  484.       set hCast to getAt(hiliteCastList, i)
  485.       if the castNum of sprite hiliteSprite <> hCast then
  486.         set the castNum of sprite hiliteSprite to hCast
  487.         set the locH of sprite hiliteSprite to the locH of sprite rollSprite
  488.         set the locV of sprite hiliteSprite to the locV of sprite rollSprite
  489.         puppetSound("popupRollover")
  490.       end if
  491.       return 1
  492.     end if
  493.   end repeat
  494.   return 0
  495. end
  496.  
  497. on hidePopup whichSprite
  498.   set cc to the castNum of sprite whichSprite
  499.   set cName to the name of cast cc
  500.   if cName = "rolled" then
  501.     set saveH to the locH of sprite (whichSprite + 1)
  502.     set the locH of sprite (whichSprite + 1) to -10000
  503.     updateStage()
  504.     scriptDelay(5)
  505.     set the locH of sprite (whichSprite + 1) to saveH
  506.     updateStage()
  507.     scriptDelay(5)
  508.     set the locH of sprite (whichSprite + 1) to -10000
  509.     updateStage()
  510.     scriptDelay(5)
  511.     set the locH of sprite (whichSprite + 1) to saveH
  512.     updateStage()
  513.     scriptDelay(5)
  514.     set the castNum of sprite whichSprite to the castNum of sprite whichSprite - 1
  515.     set the locH of sprite (whichSprite + 1) to -10000
  516.     updateStage()
  517.   end if
  518.   puppetSprite(whichSprite, 0)
  519.   puppetSprite(whichSprite + 1, 0)
  520.   updateStage()
  521. end
  522.  
  523. on mouseInRect whichRect
  524.   return (the mouseH >= the left of whichRect) and (the mouseH <= the right of whichRect) and (the mouseV >= the top of whichRect) and (the mouseV <= the bottom of whichRect)
  525. end
  526.  
  527. on popUpMenu pixelsPerRow, hiliteSprite, choiceList, menuRect
  528.   set numChoices to count(choiceList)
  529.   set sp to the clickOn
  530.   set cc to the castNum of sprite the clickOn
  531.   set hlCast to the castNum of sprite hiliteSprite
  532.   set the castNum of sprite sp to cc + 1
  533.   puppetSound("menuAppears")
  534.   updateStage()
  535.   set hilited to 1
  536.   set bNum to 0
  537.   repeat while the mouseDown
  538.     if hilited then
  539.       if (the mouseCast <> (cc + 1)) and (the mouseCast <> hlCast) then
  540.         scriptDelay(3)
  541.         if (the mouseCast <> (cc + 1)) and (the mouseCast <> hlCast) then
  542.           set the castNum of sprite sp to cc
  543.           set the rect of sprite hiliteSprite to rect(0, 0, 0, 0)
  544.           set bNum to 0
  545.           set hilited to 0
  546.           updateStage()
  547.         end if
  548.       else
  549.         set mTop to the top of menuRect
  550.         set vv to the mouseV
  551.         set dd to vv - mTop
  552.         set bNum to (dd / pixelsPerRow) + 1
  553.         if bNum <= numChoices then
  554.           set ll to the left of menuRect
  555.           set rr to the right of menuRect
  556.           set tt to mTop + (pixelsPerRow * (bNum - 1))
  557.           set bb to tt + pixelsPerRow + 1
  558.           set the rect of sprite hiliteSprite to rect(ll, tt, rr, bb)
  559.           set the blend of sprite hiliteSprite to 50
  560.         else
  561.           set bNum to 0
  562.           set the rect of sprite hiliteSprite to rect(0, 0, 0, 0)
  563.         end if
  564.         updateStage()
  565.       end if
  566.       next repeat
  567.     end if
  568.     if the mouseCast = cc then
  569.       set the castNum of sprite sp to cc + 1
  570.       set hilited to 1
  571.       updateStage()
  572.     end if
  573.   end repeat
  574.   if bNum then
  575.     puppetSound("popupSelectionMade")
  576.     set the visible of sprite hiliteSprite to 0
  577.     updateStage()
  578.     realDelay(3)
  579.     set the visible of sprite hiliteSprite to 1
  580.     updateStage()
  581.     realDelay(5)
  582.     set the visible of sprite hiliteSprite to 0
  583.     updateStage()
  584.     realDelay(3)
  585.     set the visible of sprite hiliteSprite to 1
  586.     updateStage()
  587.     realDelay(5)
  588.     set the visible of sprite hiliteSprite to 0
  589.     updateStage()
  590.     realDelay(3)
  591.     set the visible of sprite hiliteSprite to 1
  592.     updateStage()
  593.     realDelay(5)
  594.   end if
  595.   hideSprite(hiliteSprite)
  596.   set the castNum of sprite sp to cc
  597.   updateStage()
  598.   if bNum then
  599.     return getAt(choiceList, bNum)
  600.   else
  601.     return bNum
  602.   end if
  603. end
  604.  
  605. on scriptDelay x
  606.   set tt to the ticks
  607.   repeat while the ticks < (tt + x)
  608.     if the mouseDown then
  609.       repeat while the mouseDown
  610.       end repeat
  611.       exit
  612.     end if
  613.   end repeat
  614. end
  615.  
  616. on realDelay x
  617.   set the keyDownScript to "blockKeys"
  618.   set tt to the ticks
  619.   repeat while the ticks < (tt + x)
  620.   end repeat
  621.   set the keyDownScript to EMPTY
  622. end
  623.  
  624. on hideSprite whichSprite
  625.   set the locH of sprite whichSprite to -2000
  626. end
  627.